input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.register{
    background: url(../images/sec_backgo.webp);
    padding: 4rem 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.register .card{
    max-width: 700px;
    margin: auto;
    padding: 2rem;
    overflow: hidden;
    padding: 2rem;
}

.reg-frm{
    transition: .3s;
}

.was_validate input:invalid + .invalid{
    display: block;
}

form .std-inp{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

form .sky-inp{
    width: 46%;
    margin-left: 5px;
}
form .sky-inp-city{
    width: 95%;
    margin-left: 5px;
}
form .invalid{
    color: #d00;
    display: none;
}

form .form-control{
    border: none;
    height: 50px;
    outline: none;
    background: #c4e0cc5c;
    margin-top: 1rem;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    border: 1px solid #c4e0cc5c;
}

form .form-control:focus{
    box-shadow: 0px 0px 3px 0px #507550;
}

form .student-inf input{
    width: 100%;
}

form .student-inf .std-head{
    display: none;
    align-items: center;
    justify-content: center;
}

form .student-inf .bk-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #636663;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin-right: 10px;
    cursor: pointer;
}

form .student-inf .bk-btn span{
    color: #fff;
}


form .stu-list{
    transition: .3s;
}

form .add-stu{
    position: relative;
    margin-right: 10px;
    padding-bottom: 10px;
}

form .add-stu .rem{
    position: absolute;
    color: #d00;
    right: 0;
    cursor: pointer; 
}

form .parent-inf{
    max-width: 450px;
    margin: auto;
}

form .parent-inf h5{
    margin: 0;
}

form .parent-inf input{
    width: 100%;
}

form button{
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #507550;
    color: #fff;
    transition: .2s;
    cursor: pointer;
}

form button:hover{
    transform: scale(0.9);
}

.form-check label{
    transition: .3s;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 10px;
    cursor: pointer;
  }

.form-check input:checked + label{
    background-color: #507550;
    color: #fff;
  }

#senDing{
    display: none;
    align-items: center;
}

#senDing img{
    width: 30px;
    height: 30px;
}


@media screen and (max-width:600px) {
    .register .card{
        max-width: 350px
    }

    form .sky-inp {
        width: 100%;
    }

    form .parent-inf input {
        width: 100%;
    }
}

.formTab{
    display: none;
}
.formTabActive{
    display: block;
    animation: changeTab .9s;
}


/*loder style*/

.loader{
    position: fixed;
    background-color: rgb(80,117,80,.5);
    /* opacity: .5; */
    z-index: 100;
    width: 100%;
    height: 100%;
    display:none;
    justify-content: center;
    align-items: center;
    animation: opasityAnim .5s;
}
.loader img{
    border-radius: 50%;
    mix-blend-mode: multiply;
    /* user-select: none; */
    /* background-color: white; */
}
@keyframes opasityAnim{
    from{ opacity: 0;}
    to{opacity: 1;}
}


@keyframes changeTab{
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(0);
    }
}
.add-stu{
    display: none;
}
.stuFormTab{
    display: block;
    animation: changeStudentTab .5s;
    animation-timing-function:ease-in;
}
@keyframes changeStudentTab{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;

    }
}

.prevTabActive{
    display: block;
    animation: prvTab 1s;
}

@keyframes prvTab{
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
}

